/* Tools */

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main {
	display: block;
}

body {
	line-height: 1;
}

ol,
ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

.text-align-center {
	text-align: center;
}

.text-align-right {
	text-align: right;
}

.display-block {
	display: block;
}

.hidden {
	display: none !important;
	visibility: hidden;
}

.clearfix::before,
.clearfix::after {
	content: "";
	display: table;
}

.clearfix::after {
	clear: both;
}

.clear {
	clear: both;
}

/* show only  SP/PC
-------------------------------*/

.sp-only {
	display: none !important;
}

.sp-only-2 {
	display: none !important;
}

.pc-only {
	display: block !important;
}

.pc-only-2 {
	display: inline-block !important;
}

/* font
-------------------------------*/

.bold {
	font-weight: bold;
}

/* margin
-------------------------------*/

/* padding
-------------------------------*/

/* base */

html {
	font-size: 62.5%;
}

body {
	font-family: "TazuganeGothicStdN-Regular", sans-serif;
	font-size: 1.4rem;
	color: #222222;
}

a {
	color: inherit;
	text-decoration: none;
}

img {
	max-width: 100%;
	height: auto;
}

input,
textarea,
select,
button {
	font-family: inherit;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	outline: none;
}

select::-ms-expand {
	display: none;
}

button {
	cursor: pointer;
	font-size: inherit;
}

/* for development */

pre {
	padding: 15px;
	background: #eee;
	font-size: 1.2rem;
	line-height: 1.2;
}

/* Layout */

.l-body {
	width: 100%;
	overflow: hidden;
}

.l-body.is-fixed {
	position: fixed;
}

.l-wrapper {
	width: calc(100% - 50px);
	margin-left: auto;
	margin-right: auto;
}

.l-pc-wrapper {
	margin-left: auto;
	margin-right: auto;
}

.l-page-content {
	position: relative;
	margin-top: 12px;
	padding-bottom: 68px;
}

.l-row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.l-row--between {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.l-row--center {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.l-row--end {
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

.l-row--reverse {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}

.l-row--align-center {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.l-col-1 {
	width: 100%;
}

.l-col-2 {
	width: 100%;
}

.l-col-3 {
	width: 100%;
}

.l-col-4 {
	width: 100%;
}

.l-col-5 {
	width: 100%;
}

.l-col-6 {
	width: 100%;
}

.l-col-7 {
	width: 100%;
}

.l-col-8 {
	width: 100%;
}

.l-col-9 {
	width: 100%;
}

.l-col-10 {
	width: 100%;
}

.l-col-11 {
	width: 100%;
}

.l-col-12 {
	width: 100%;
}

/* Module */

.header-logo {
	display: block;
	position: fixed;
	top: 15px;
	left: 20px;
	width: 26px;
	z-index: 100;
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.header-logo img {
	display: block;
}

.header-logo--home {
	opacity: 0;
	visibility: hidden;
}

.header-logo.is-visible {
	opacity: 1;
	visibility: visible;
}

.header-menu {
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: #FFFFFF;
	z-index: 100;
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
	opacity: 0;
	visibility: hidden;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.is-menu-open .header-menu {
	opacity: 1;
	visibility: visible;
}

.header-menu__logo {
	position: fixed;
	top: 14px;
	left: 20px;
	width: 120px;
	z-index: 1;
}

.header-menu__bg {
	display: block;
	position: absolute;
	top: 20px;
	left: 0;
	width: 100%;
	height: 100%;
	background: #6AC8E5;
}

.header-menu__bg::before {
	content: '';
	position: absolute;
	min-width: 375px;
	left: 50%;
	width: 100vw;
	min-width: 375px;
	pointer-events: none;
	top: 0;
	height: 57px;
	-webkit-transform: translate(-50%, -100%);
	-ms-transform: translate(-50%, -100%);
	transform: translate(-50%, -100%);
	background: url(../img/bg_menu_top_sp.png) no-repeat center center/100% 100%;
}

.header-menu__content {
	overflow: auto;
	width: 100%;
	max-height: 100%;
	padding-bottom: 130px;
	position: relative;
	padding-top: 105px;
	-ms-overflow-style: none; /* これを追加 */
}

.nav {
	width: 100%;
}

.nav__items {
	text-align: center;
	padding-bottom: 5px;
}

.nav__item:not(:last-of-type) {
	margin-bottom: 26px;
}

.nav__item.is-disabled {
	pointer-events: none;
	color: rgba(8, 26, 184, 0.1);
	opacity: .2;
}

.nav__link {
	position: relative;
	display: block;
}

.nav__jp {
	display: block;
	width: 100%;
	padding-top: 3px;
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	font-family: "TazuganeGothicStdN-Bold", sans-serif;
	font-size: 1.6rem;
	line-height: 1.65;
	letter-spacing: 0.1em;
	color: #081AB8;
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
	z-index: 1;
}

.nav__en {
	display: block;
	height: 29px;
	padding-left: 3px;
}

.nav__en img {
	height: 100%;
}

.nav__en__default {
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.nav__en__hover {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.nav__sub-items {
	margin-top: 36px;
	text-align: center;
}

.nav__sub-item:not(:last-of-type) {
	margin-bottom: 12px;
}

.nav__sub-item.is-disabled {
	pointer-events: none;
	color: rgba(8, 26, 184, 0.1);
	opacity: .2;
}

.nav__sub-item a {
	font-family: "TazuganeGothicStdN-Bold", sans-serif;
	font-size: 1.4rem;
	line-height: 1.65;
	letter-spacing: 0.1em;
	-webkit-font-feature-settings: 'palt' on;
	font-feature-settings: 'palt' on;
	color: #081AB8;
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.header-banner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-top: 52px;
}

.header-banner__item {
	width: 60px;
}

.header-banner__item:not(:last-of-type) {
	margin-right: 10px;
}

.header-banner__item a {
	display: block;
}

.menu-btn {
	position: fixed;
	top: 15px;
	right: 15px;
	width: 40px;
	height: 40px;
	background: #081AB8;
	border-radius: 50%;
	border: none;
	display: block;
	cursor: pointer;
	padding: 0;
	margin: 0;
	z-index: 101;
	text-align: center;
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.menu-btn:hover {
	background: #0043EF;
}

.menu-btn__icon {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 25px;
	height: 5px;
	display: block;
}

.menu-btn__icon span {
	position: absolute;
	width: 100%;
	height: 1px;
	background: #FFFFFF;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
	left: 0;
}

.menu-btn__icon span:nth-of-type(1) {
	top: 0;
}

.menu-btn__icon span:nth-of-type(2) {
	top: 100%;
}

.is-menu-open .menu-btn__icon span:nth-of-type(1) {
	top: 50%;
	-webkit-transform: rotate(20deg);
	-ms-transform: rotate(20deg);
	transform: rotate(20deg);
}

.is-menu-open .menu-btn__icon span:nth-of-type(2) {
	top: 50%;
	-webkit-transform: rotate(-20deg);
	-ms-transform: rotate(-20deg);
	transform: rotate(-20deg);
}

.menu-btn__text {
	display: block;
	font-size: 1rem;
	text-align: center;
}

.footer {
	position: relative;
	padding: 68px 0 27px;
	background: #6AC8E5;
}

.footer::before {
	content: '';
	position: absolute;
	min-width: 375px;
	left: 50%;
	width: 100vw;
	min-width: 375px;
	pointer-events: none;
	top: 0;
	height: 30px;
	-webkit-transform: translate(-50%, -100%);
	-ms-transform: translate(-50%, -100%);
	transform: translate(-50%, -100%);
	background: url(../img/bg_footer_top_sp.png) no-repeat center center/100% 100%;
}

.footer-nav {
	position: relative;
	margin-top: 80px;
	padding: 14px 1px;
}

.footer-nav::before {
	content: '';
	position: absolute;
	top: 0;
	left: -15px;
	width: 100%;
	width: calc(100% + 40px);
	height: 100%;
	background: #88D9F2;
	border-radius: 10px 0px 0px 10px;
}

.footer-nav__inner {
	position: relative;
}

.footer-nav__heading {
	margin-bottom: 8px;
	font-family: "Montserrat", sans-serif;
	font-weight: bold;
	font-size: 1.6rem;
	line-height: 1.65;
	letter-spacing: 0.05em;
	color: #131257;
}

.footer-nav__items {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.footer-nav__item {
	width: calc(50% - 5px);
	margin-bottom: 5px;
}

.footer-nav__link {
	padding: 7px 6px 5px;
	display: block;
	font-family: "TazuganeGothicStdN-Bold", sans-serif;
	font-size: 1.1rem;
	line-height: 1.5;
	text-align: center;
	letter-spacing: 0.1em;
	-webkit-font-feature-settings: 'palt' on;
	font-feature-settings: 'palt' on;
	color: #081AB8;
	background: rgba(255, 255, 255, 0.5);
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
	border-radius: 20px;
}

.footer-nav__link.is-current {
	background: #FFFFFF;
}

.footer-nav__link.is-disabled {
	pointer-events: none;
	color: rgba(8, 26, 184, 0.1);
	background: rgba(255, 255, 255, 0.5);
}

.footer-bottom {
	padding: 50px 15px 0;
}

.footer-bottom__links {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.footer-bottom__links__item {
	height: 60px;
}

.footer-bottom__links__item:not(:last-of-type) {
	margin-right: 10px;
}

.footer-bottom__links__item a {
	display: block;
	height: 100%;
}

.footer-bottom__links__item a img {
	display: block;
	height: 100%;
}

.footer-bottom__wrap {
	margin-top: 48px;
}

.footer-bottom__logo {
	width: 167px;
	margin: 0 auto;
}

.footer-bottom__logo img {
	display: block;
	margin-left: -8px;
}

.footer-bottom__copy {
	display: block;
	font-size: 1rem;
	line-height: 1.65;
	text-align: center;
	letter-spacing: 0.05em;
	margin-top: 27px;
}

.footer-contact__heading {
	margin-bottom: 20px;
}

.footer-contact__button {
	margin-top: 32px;
}

.modal {
	opacity: 0;
	visibility: hidden;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
	border-radius: 10px;
	position: fixed;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	background: #ffffff;
	-webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
	box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
	z-index: 201;
	max-height: 75vh;
	height: auto;
	width: 90%;
}

.modal.is-visible {
	opacity: 1;
	visibility: visible;
}

.modal__inner {
	overflow: auto;
	height: 100%;
	padding: 30px 20px 20px;
	max-height: 75vh;
}

.modal__close {
	border: none;
	cursor: pointer;
	position: absolute;
	top: 0;
	right: 0;
	background: #081AB8;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	white-space: nowrap;
	text-indent: 100%;
	overflow: hidden;
	padding: 0;
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.modal__close::before,
.modal__close::after {
	content: '';
	background: #FFFFFF;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%) rotate(45deg);
	-ms-transform: translate(-50%, -50%) rotate(45deg);
	transform: translate(-50%, -50%) rotate(45deg);
}

.modal__close::before {
	width: 14px;
	height: 1px;
}

.modal__close::after {
	width: 1px;
	height: 14px;
}

.modal-bg {
	display: block;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 200;
}

.card01 {
	display: block;
}

.card01__image {
	position: relative;
	margin-bottom: 17px;
}

.card01__image__inner {
	display: block;
	position: relative;
	width: 100%;
	border-radius: 10px;
	overflow: hidden;
	padding-top: 56%;
	-webkit-box-shadow: 10px 10px 20px rgba(5, 14, 48, 0.1);
	box-shadow: 10px 10px 20px rgba(5, 14, 48, 0.1);
}

.card01__image img {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	font-family: "object-fit: cover;";
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.card01__date {
	position: absolute;
	bottom: 2px;
	left: -18px;
	font-family: "Montserrat", sans-serif;
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	font-size: 1.2rem;
	line-height: 1;
	letter-spacing: 0.05em;
	color: #555555;
}

.card01__badge {
	position: absolute;
	background-color: #CBFF5E;
	font-size: .8rem;
	width: 50px;
	height: 50px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	border-radius: 50%;
	text-align: center;
	right: 10px;
	bottom: 8px;
	line-height: 1.2;
}

.card01__badge strong {
	font-size: 1.2rem;
}

.card01__heading {
	font-family: "TazuganeGothicStdN-Bold", sans-serif;
	font-size: 1.8rem;
	line-height: 1.5;
	letter-spacing: 0.1em;
	-webkit-font-feature-settings: 'palt' on;
	font-feature-settings: 'palt' on;
}

.slide-archive__item:nth-of-type(1) .card01__heading--home-archive {
	font-size: 1.8rem;
}

.card01__heading a {
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.card01__tag {
	margin-top: 4px;
}

.heading-1 {
	position: relative;
}

.heading-1--center {
	text-align: center;
}

.heading-1__jp {
	display: block;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	padding: 4px 2px;
	font-family: "TazuganeGothicStdN-Bold", sans-serif;
	font-size: 1.8rem;
	line-height: 1.2;
	letter-spacing: 0.15em;
	color: #131257;
}

.heading-1__jp--bottom {
	top: 15px;
}

.heading-1__jp--lg {
	top: -2px;
	letter-spacing: 0.25em;
	font-size: 3.2rem;
}

.heading-1__en {
	display: block;
	height: 36px;
	padding-left: 3px;
}

.heading-1__en img {
	height: 100%;
}

.heading-2 {
	font-size: 3.2rem;
	font-weight: bold;
	color: #131257;
	letter-spacing: 0.1em;
	line-height: 1.5;
}

.heading-3__en {
	display: block;
	font-family: "Montserrat", sans-serif;
	font-weight: bold;
	font-size: 1.4rem;
	line-height: 1.1;
	letter-spacing: 0.05em;
	color: #131257;
}

.heading-3__jp {
	display: block;
	font-family: "TazuganeGothicStdN-Bold", sans-serif;
	font-size: 3.2rem;
	line-height: 1.5;
	letter-spacing: 0.1em;
	-webkit-font-feature-settings: 'palt' on;
	font-feature-settings: 'palt' on;
	color: #131257;
}

.heading-3__jp--sm {
	font-size: 1.8rem;
}

.heading-4 {
	font-family: "TazuganeGothicStdN-Bold", sans-serif;
	font-size: 2rem;
	line-height: 1.65;
	text-align: center;
	letter-spacing: 0.1em;
	-webkit-font-feature-settings: 'palt' on;
	font-feature-settings: 'palt' on;
	color: #131257;
}

.heading-5 {
	margin-bottom: 30px;
	font-family: "TazuganeGothicStdN-Bold", sans-serif;
	font-size: 3.2rem;
	line-height: 1.5;
	letter-spacing: 0.1em;
	-webkit-font-feature-settings: 'palt' on;
	font-feature-settings: 'palt' on;
	color: #131257;
}

.heading-6 {
	margin-bottom: 15px;
	font-size: 2.6rem;
	font-family: "TazuganeGothicStdN-Bold", sans-serif;
	letter-spacing: 0.1em;
	line-height: 1.5;
}

.heading-6:not(:first-child) {
	margin-top: 30px;
}

.heading-7 {
	margin-bottom: 10px;
	font-size: 2.1rem;
	line-height: 1.5;
	font-family: "TazuganeGothicStdN-Bold", sans-serif;
	letter-spacing: 0.1em;
}

.heading-8 {
	margin-bottom: 7px;
	font-size: 1.6rem;
	line-height: 1.5;
	font-family: "TazuganeGothicStdN-Bold", sans-serif;
	letter-spacing: 0.1em;
}

.heading-9 {
	font-family: "TazuganeGothicStdN-Bold", sans-serif;
	font-size: 3.2rem;
	line-height: 1.5;
	text-align: center;
	letter-spacing: 0.1em;
	-webkit-font-feature-settings: 'palt' on;
	font-feature-settings: 'palt' on;
	color: #131257;
}

.heading-10 {
	font-family: "TazuganeGothicStdN-Bold", sans-serif;
	text-align: center;
	font-size: 2.4rem;
	line-height: 1.5;
	text-align: center;
	letter-spacing: 0.1em;
	-webkit-font-feature-settings: 'palt' on;
	font-feature-settings: 'palt' on;
}

.heading-11 {
	margin-bottom: 10px;
	font-family: "TazuganeGothicStdN-Bold", sans-serif;
	font-size: 1.8rem;
	line-height: 1.5;
	letter-spacing: 0.1em;
	-webkit-font-feature-settings: 'palt' on;
	font-feature-settings: 'palt' on;
}

.cat-list__item {
	display: inline-block;
	padding: 3px 9px 0;
	border-radius: 10px;
	font-family: "TazuganeGothicStdN-Bold", sans-serif;
	font-size: 1.1rem;
	line-height: 1.5;
	text-align: center;
	letter-spacing: 0.1em;
	-webkit-font-feature-settings: 'palt' on;
	font-feature-settings: 'palt' on;
	background: #DDEAF1;
	color: #081AB8;
	margin-bottom: 5px;
}

.cat-list__item:not(:last-child) {
	margin-right: 5px;
}

.cat-list-2 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	background: #FFFFFF;
	border-radius: 50px;
	padding: 8px 20px 4px;
}

.cat-list-2__item {
	font-family: "TazuganeGothicStdN-Bold", sans-serif;
	font-size: 1.4rem;
	line-height: 1.5;
	letter-spacing: 0.15em;
}

.cat-list-2__item a {
	color: #081AB8;
}

.cat-list-2__item:not(:last-of-type)::after {
	content: '/';
	font-family: "TazuganeGothicStdN-Bold", sans-serif;
	font-size: 1.2rem;
	color: #D1D1D9;
	display: inline-block;
	padding-right: 5px;
	position: relative;
	top: -2px;
}

.tag-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.tag-list__item {
	font-size: 1.1rem;
	line-height: 1.5;
	letter-spacing: 0.1em;
	-webkit-font-feature-settings: 'palt' on;
	font-feature-settings: 'palt' on;
	color: #081AB8;
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.tag-list__item:not(:last-of-type) {
	margin-right: 7px;
}

.button-1 {
	position: relative;
	overflow: hidden;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 100%;
	font-family: "Montserrat", sans-serif;
	font-weight: bold;
	font-size: 1.6rem;
	line-height: 1.5;
	text-align: center;
	letter-spacing: 0.1em;
	color: #081AB8;
	border: 1px solid #081AB8;
	padding: 12px;
	border-radius: 30px;
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.button-1--center {
	margin: 0 auto;
}

.button-1--sm {
	font-size: 1.2rem;
	padding: 5px;
}

.button-1--bg-white {
	background: #FFFFFF;
}

.button-1--search {
	width: 100px;
	font-size: 1.4rem;
	padding: 2px;
}

.button-1--input {
	background: none;
	cursor: pointer;
}

.button-1 span {
	position: relative;
}

.button-2 {
	display: block;
	position: relative;
	font-family: "TazuganeGothicStdN-Bold", sans-serif;
	font-size: 1.6rem;
	line-height: 1.5;
	text-align: justify;
	letter-spacing: 0.1em;
	-webkit-font-feature-settings: 'palt' on;
	font-feature-settings: 'palt' on;
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
	color: #081AB8;
}

.button-2--pdf {
	padding-left: 30px;
}

.button-2--pdf::before {
	content: '';
	width: 19px;
	height: 19px;
	position: absolute;
	top: 1px;
	left: 0;
	background: url(../img/icon_pdf.svg) no-repeat center center/contain;
}

.button-2 span {
	font-size: 1.2rem;
}

.button-3 {
	position: relative;
	border: none;
	background: none;
	cursor: pointer;
	display: inline-block;
	font-family: "Montserrat", sans-serif;
	font-weight: 700;
	font-size: 1.6rem;
	line-height: 1.3;
	text-align: center;
	letter-spacing: 0.1em;
	color: #081AB8;
	padding: 0;
	margin: 0;
	padding-left: 20px;
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.button-3::before {
	content: '';
	position: absolute;
	top: 2px;
	left: 4px;
	width: 12px;
	height: 12px;
	background: url(../img/icon_arrow_back.svg) no-repeat center center/contain;
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.button-3::after {
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	width: calc(100% - 20px);
	height: 1px;
	background: #081AB8;
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.text {
	font-size: 1.6rem;
	line-height: 2;
	text-align: justify;
	letter-spacing: 0.1em;
	-webkit-font-feature-settings: 'palt' on;
	font-feature-settings: 'palt' on;
}

.text--lhsm {
	line-height: 1.65;
}

.text--center {
	text-align: center;
}

.text--sm {
	font-size: 1.4rem;
	line-height: 1.5;
}

.text--mb {
	margin-bottom: 15px;
}

.text a {
	color: #081AB8;
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.note-text {
	font-size: 1.2rem;
	line-height: 2;
	text-align: justify;
	letter-spacing: 0.1em;
	-webkit-font-feature-settings: 'palt' on;
	font-feature-settings: 'palt' on;
	color: #555555;
}

.note-text--mt {
	margin-top: 10px;
}

.page-head {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	height: 210px;
	background: url(../img/bg_page-head_sp.jpg) no-repeat center center/cover;
}

.page-head::before {
	content: '';
	position: absolute;
	min-width: 375px;
	left: 50%;
	width: 100vw;
	min-width: 375px;
	pointer-events: none;
	bottom: 0;
	height: 87px;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	background: url(../img/bg_page-title_top_sp.png) no-repeat center center/100% 100%;
}

.page-head__heading {
	position: relative;
	width: 100%;
	margin-bottom: 10px;
}

.page-head__jp {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	margin-top: 3px;
	width: 100%;
	font-family: "TazuganeGothicStdN-Bold", sans-serif;
	font-size: 1.8rem;
	line-height: 1.65;
	text-align: center;
	letter-spacing: 0.25em;
	-webkit-font-feature-settings: 'palt' on;
	font-feature-settings: 'palt' on;
	color: #FFFFFF;
	white-space: nowrap;
}

.page-head__jp--bottom {
	top: 15px;
}

.page-head__en {
	display: block;
	height: 36px;
	padding-left: 3px;
	text-align: center;
}

.page-head__en img {
	height: 100%;
}

.pagination {
	margin-top: 61px;
	padding: 14px 0;
	border-top: 1px solid #222222;
	border-bottom: 1px solid #222222;
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.pagination .page-numbers:not(.current):not(.prev):not(.next):not(.dots) {
	display: none;
	color: #081AB8;
	font-weight: bold;
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.pagination .page-numbers:not(.prev):not(.next) {
	font-family: "Montserrat", sans-serif;
	font-size: 2.1rem;
	line-height: 1.5;
	text-align: center;
}

.pagination .page-numbers.current {
	font-weight: bold;
	color: #081AB8;
}

.pagination .page-numbers.dots {
	display: none;
}

.pagination .prev,
.pagination .next {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
	padding: 0;
	width: 24px;
	height: 24px;
	display: block;
}

.pagination .prev {
	left: 0;
	margin-right: auto;
	background: url(../img/icon_arrow_pagination_prev.svg) no-repeat left center/13px;
}

.pagination .next {
	right: 0;
	margin-left: auto;
	background: url(../img/icon_arrow_pagination_next.svg) no-repeat right center/13px;
}

.breadcrumb {
	position: relative;
	z-index: 1;
	margin-top: 80px;
	color: #222222;
	margin-left: -10px;
	margin-right: -10px;
	overflow: hidden;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.breadcrumb span {
	font-style: normal;
	font-weight: normal;
	font-size: 12px;
	line-height: 150%; /* identical to box height, or 18px */
	letter-spacing: 0.05em;
	-webkit-font-feature-settings: 'palt' on;
	font-feature-settings: 'palt' on;
}

.breadcrumb span:not(:last-of-type)::after {
	content: '/';
	font-family: "TazuganeGothicStdN-Bold", sans-serif;
	font-size: 1rem;
	color: #D1D1D9;
	display: inline-block;
	padding-right: 0px;
	position: relative;
	top: -1px;
}

.breadcrumb span.current-item {
	font-weight: bold;
}

.breadcrumb a {
	color: #081AB8;
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.mv {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	height: 55vh;
	min-height: 350px;
}

.mv--no-post {
	background: url(../img/bg_mv.jpg) no-repeat center center/cover;
	min-height: 430px;
}

.mv__outer {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 218px;
	width: 100%;
	height: 320px;
	margin: 0 auto;
	padding: 14px 0 40px;
	background: url(../img/bg_mv_content.svg) no-repeat center center/contain;
}

.mv--no-post .mv__outer {
	width: 304px;
	height: 450px;
	margin-top: -25px;
}

.mv__wrapper {
	width: 100%;
}

.mv__logo {
	width: 67px;
	margin: 0 auto;
}

.mv__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}

.mv__bg img {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	font-family: "object-fit: cover;";
}

.mv-wrapper {
	position: relative;
}

.mv-content {
	width: 100%;
	padding-top: 55px;
	padding-bottom: 25px;
}

.mv-control-number {
	width: 100px;
}

.mv-control-number__item {
	width: 100px;
}

.mv-control-number__heading {
	display: block;
	margin-bottom: 5px;
	text-align: center;
	font-family: "Montserrat", sans-serif;
	font-weight: 700;
	font-size: 1.1rem;
	letter-spacing: .1em;
}

.mv-control-number__main img {
	display: block;
	height: 35px;
	margin: 0 auto;
}

.mv-pagination {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-top: 0;
}

.mv-pagination .swiper-pagination-bullet {
	margin: 0 5px !important;
	width: 10px;
	height: 10px;
	background: #9AA1DD;
	opacity: 1;
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.mv-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background: #081AB8;
}

.mv-control-arrows {
	position: absolute;
	top: 67px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 100%;
	z-index: 1;
}

.mv-control-arrows__item {
	position: absolute;
	top: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 33px;
	height: 33px;
	display: block;
}

.mv-control-arrows__item--prev {
	margin-left: -53px;
}

.mv-control-arrows__item--next {
	margin-left: 53px;
}

.mv-control-arrows__button {
	position: relative;
	cursor: pointer;
	width: 100%;
	height: 100%;
	border: 1px solid #081AB8;
	border: none;
	text-indent: 100%;
	overflow: hidden;
	white-space: nowrap;
	display: block;
	background: transparent;
	padding: 0;
	margin: 0;
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.mv-control-arrows__button::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 20px;
	height: 20px;
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.mv-control-arrows__button--prev::before {
	-webkit-transform: translate(-50%, -50%) rotate(-45deg);
	-ms-transform: translate(-50%, -50%) rotate(-45deg);
	transform: translate(-50%, -50%) rotate(-45deg);
	border-top: 2px solid #081AB8;
	border-left: 2px solid #081AB8;
}

.mv-control-arrows__button--next::before {
	-webkit-transform: translate(-50%, -50%) rotate(45deg);
	-ms-transform: translate(-50%, -50%) rotate(45deg);
	transform: translate(-50%, -50%) rotate(45deg);
	border-top: 2px solid #081AB8;
	border-right: 2px solid #081AB8;
}

.mv-pc-main {
	margin-top: 2px;
}

.mv-pc-main__title {
	font-family: "TazuganeGothicStdN-Bold", sans-serif;
	font-size: 1.8rem;
	line-height: 1.5;
	text-align: justify;
	letter-spacing: 0.1em;
	-webkit-font-feature-settings: 'palt' on;
	font-feature-settings: 'palt' on;
}

.mv-pc-main__button {
	margin-top: 12px;
}

.mv-sp-main {
	position: relative;
	padding-top: 10px;
	padding-bottom: 50px;
	min-height: 35vh;
}

.mv-sp-main::before {
	content: '';
	position: absolute;
	z-index: 1;
	min-width: 375px;
	left: 50%;
	width: 100vw;
	min-width: 375px;
	pointer-events: none;
	top: 0;
	height: 87px;
	-webkit-transform: translate(-50%, -100%);
	-ms-transform: translate(-50%, -100%);
	transform: translate(-50%, -100%);
	background: url(../img/bg_mv-main_sp.png) no-repeat center center/100% 100%;
}

.mv-sp-main__title {
	font-family: "TazuganeGothicStdN-Bold", sans-serif;
	font-size: 1.8rem;
	line-height: 1.5;
	text-align: justify;
	letter-spacing: 0.1em;
	-webkit-font-feature-settings: 'palt' on;
	font-feature-settings: 'palt' on;
}

.mv-sp-main__button {
	margin-top: 12px;
}

.mv-no-post {
	padding-top: 64px;
}

.mv-no-post__logo {
	width: 150px;
	margin: 0 auto 30px;
}

.mv-no-post__logo img {
	display: block;
	width: 100%;
}

.mv-no-post__heading {
	margin-bottom: 14px;
	font-family: "TazuganeGothicStdN-Bold", sans-serif;
	font-size: 3rem;
	line-height: 1.5;
	text-align: center;
	letter-spacing: 0.1em;
}

.mv-no-post__sub-heading {
	font-size: 1.6rem;
	line-height: 1.5;
	text-align: center;
	letter-spacing: 0.15em;
}

.mv-no-post-sp {
	margin-top: -5px;
	margin-bottom: 30px;
}

.mv-no-post-sp__heading {
	margin-bottom: 10px;
	font-family: "TazuganeGothicStdN-Bold", sans-serif;
	font-size: 2.1rem;
	line-height: 1.5;
	text-align: center;
	letter-spacing: 0.1em;
}

.mv-no-post-sp__sub-heading {
	font-style: 1.4rem;
	line-height: 1.65;
	text-align: center;
	letter-spacing: 0.15em;
	-webkit-font-feature-settings: 'palt' on;
	font-feature-settings: 'palt' on;
}

.mv-banner {
	position: absolute;
	bottom: -15px;
	left: 0;
	z-index: 1;
	width: 100%;
	padding: 0 10px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.mv-banner__item {
	height: 50px;
}

.mv-banner__item:not(:last-of-type) {
	margin-right: 10px;
}

.mv-banner__item a {
	display: block;
	height: 100%;
}

.mv-banner__item a img {
	display: block;
	height: 100%;
}

.slide-archive {
	overflow: visible;
}

.slide-archive__items {
	margin-top: 40px;
}

.slide-archive__item {
	width: 80.2%;
	margin-right: 50px;
	-webkit-transition: .4s;
	-o-transition: .4s;
	transition: .4s;
}

.slide-archive__wrap {
	margin-top: 28px;
}

.slide-archive__button {
	margin-top: 29px;
}

.slide-archive-control {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.slide-archive-indicate {
	font-family: "Montserrat", sans-serif;
}

.slide-archive-indicate .swiper-pagination-current {
	font-weight: 700;
	margin-right: 4px;
}

.slide-archive-indicate .swiper-pagination-total {
	margin-left: 4px;
}

.slide-archive-nav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.slide-archive-nav__item:not(:last-of-type) {
	margin-right: 21px;
}

.slide-archive-nav__button {
	position: relative;
	cursor: pointer;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid #081AB8;
	text-indent: 100%;
	overflow: hidden;
	white-space: nowrap;
	display: block;
	background: transparent;
	padding: 0;
	margin: 0;
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.slide-archive-nav__button::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 13px;
	height: 13px;
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.slide-archive-nav__button--prev::before {
	-webkit-transform: translate(-50%, -50%) rotate(-45deg);
	-ms-transform: translate(-50%, -50%) rotate(-45deg);
	transform: translate(-50%, -50%) rotate(-45deg);
	border-top: 2px solid #081AB8;
	border-left: 2px solid #081AB8;
	margin-left: 3px;
}

.slide-archive-nav__button--next::before {
	-webkit-transform: translate(-50%, -50%) rotate(45deg);
	-ms-transform: translate(-50%, -50%) rotate(45deg);
	transform: translate(-50%, -50%) rotate(45deg);
	border-top: 2px solid #081AB8;
	border-right: 2px solid #081AB8;
	margin-left: -4px;
}

.home-news {
	padding-bottom: 61px;
}

.home-news__content {
	position: relative;
	margin-top: -176px;
}

.home-news__heading {
	position: relative;
	z-index: 1;
}

.home-news__items {
	margin-top: -10px;
}

.home-news__item:not(:last-of-type) {
	margin-bottom: 40px;
}

.home-news__button {
	margin-top: 40px;
}

.home-news-head {
	position: relative;
	background: #6AC8E5;
	margin: 57px 0 87px;
	padding: 73px 0 135px;
}

.home-news-head::before,
.home-news-head::after {
	content: '';
	position: absolute;
	min-width: 375px;
	left: 50%;
	width: 100vw;
	min-width: 375px;
	pointer-events: none;
}

.home-news-head::before {
	top: 0;
	height: 57px;
	-webkit-transform: translate(-50%, -100%);
	-ms-transform: translate(-50%, -100%);
	transform: translate(-50%, -100%);
	background: url(../img/bg_home-news_top_sp.png) no-repeat center center/100% 100%;
}

.home-news-head::after {
	bottom: 0;
	height: 87px;
	-webkit-transform: translate(-50%, 100%);
	-ms-transform: translate(-50%, 100%);
	transform: translate(-50%, 100%);
	background: url(../img/bg_home-news_bottom_sp.png) no-repeat center center/100% 100%;
}

.home-news-head--no-post {
	position: relative;
	padding-bottom: 70px;
	margin-bottom: -70px;
}

.home-news-head--no-post::after {
	content: none;
}

.home-news-head--no-post .home-news-head__wrapper::before {
	content: '';
	position: absolute;
	bottom: -50px;
	left: 0;
	width: 100%;
	height: 12px;
	z-index: 1;
	background: url(../img/deco_line_heading_white.png) repeat-x left bottom/auto 12px;
}

.home-news-head__wrapper {
	position: relative;
}

.home-news-head__wrapper::after {
	content: '';
	background: url(../img/deco_organism_01.svg) no-repeat center center/contain;
	width: 70px;
	height: 70px;
	top: -85px;
	right: -15px;
	position: absolute;
}

.important-news {
	margin-bottom: 83px;
}

.important-news__heading {
	margin-bottom: 5px;
	font-weight: bold;
	font-size: 2.1rem;
	line-height: 1.4;
	letter-spacing: 0.1em;
	-webkit-font-feature-settings: 'palt' on;
	font-feature-settings: 'palt' on;
	color: #FFFFFF;
}

.important-news__content {
	position: relative;
	padding: 14px;
	background: #FFFFFF;
	font-size: 1.6rem;
	line-height: 1.65;
	letter-spacing: 0.1em;
	-webkit-font-feature-settings: 'palt' on;
	font-feature-settings: 'palt' on;
	border-radius: 10px;
}

.important-news__more {
	border: none;
	cursor: pointer;
	position: absolute;
	top: 0;
	right: 0;
	background: #081AB8;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.important-news__more::before,
.important-news__more::after {
	content: '';
	background: #FFFFFF;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.important-news__more::before {
	width: 14px;
	height: 1px;
}

.important-news__more::after {
	width: 1px;
	height: 14px;
}

.modal-news__heading {
	margin-bottom: 18px;
	padding-bottom: 14px;
	border-bottom: 1px solid #222222;
	font-family: "TazuganeGothicStdN-Bold", sans-serif;
	font-size: 1.8rem;
	line-height: 1.5;
	letter-spacing: 0.1em;
	-webkit-font-feature-settings: 'palt' on;
	font-feature-settings: 'palt' on;
}

.modal-news__text {
	font-size: 1.4rem;
	line-height: 1.9;
	text-align: justify;
	letter-spacing: 0.1em;
	-webkit-font-feature-settings: 'palt' on;
	font-feature-settings: 'palt' on;
}

.modal-news__text p:not(:last-of-type) {
	margin-bottom: 1em;
}

.home-archive {
	position: relative;
	margin: 57px 0 81px;
	padding: 65px 0 43px;
}

.home-archive__bg {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #52CECE;
	z-index: -1;
}

.home-archive::before,
.home-archive::after {
	content: '';
	position: absolute;
	left: 50%;
	min-width: 375px;
	width: 100vw;
	pointer-events: none;
}

.home-archive::before {
	top: 0;
	height: 57px;
	-webkit-transform: translate(-50%, -100%);
	-ms-transform: translate(-50%, -100%);
	transform: translate(-50%, -100%);
	background: url(../img/bg_home-archive_top_sp.png) no-repeat center center/100% 100%;
}

.home-archive::after {
	bottom: 0;
	height: 81px;
	-webkit-transform: translate(-50%, 100%);
	-ms-transform: translate(-50%, 100%);
	transform: translate(-50%, 100%);
	background: url(../img/bg_home-archive_bottom_sp.png) no-repeat center center/100% 100%;
}

.home-archive__section:not(:last-of-type) {
	margin-bottom: 123px;
}

.home-archive__category {
	margin-top: 20px;
}

.home-activity {
	padding: 60px 0 117px;
}

.home-activity__wrapper {
	position: relative;
}

.home-activity__wrapper::before {
	content: '';
	position: absolute;
	top: -96px;
	left: -10px;
	width: 97px;
	height: 100px;
	background: url(../img/deco_organism_02.svg) no-repeat center center/contain;
}

.home-activity__wrapper::after {
	content: '';
	position: absolute;
	top: -120px;
	right: -15px;
	width: 97px;
	height: 100px;
	background: url(../img/deco_organism_03.svg) no-repeat center center/contain;
}

.home-activity__heading {
	position: relative;
	margin-bottom: 20px;
}

.home-activity__archive {
	margin-top: 40px;
}

.home-activity__category {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

.home-activity__intro {
	position: relative;
}

.home-activity__map {
	width: 100vw;
	padding-top: 123%;
	margin-top: 35px;
	background: #cccccc;
	position: relative;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	overflow: hidden;
}

.home-activity__button {
	margin-top: 40px;
}

.about-member {
	position: relative;
	height: auto;
	margin-top: 92px;
	padding: 75px 0 23px;
}

.about-member__bg {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #52CECE;
	z-index: -1;
}

.about-member::before,
.about-member::after {
	content: '';
	position: absolute;
	min-width: 375px;
	left: 50%;
	width: 100vw;
	min-width: 375px;
	pointer-events: none;
}

.about-member::before {
	top: 0;
	height: 57px;
	-webkit-transform: translate(-50%, -100%);
	-ms-transform: translate(-50%, -100%);
	transform: translate(-50%, -100%);
	background: url(../img/bg_about-member_top_sp.png) no-repeat center center/100% 100%;
}

.about-member::after {
	bottom: 0;
	height: 87px;
	-webkit-transform: translate(-50%, 100%);
	-ms-transform: translate(-50%, 100%);
	transform: translate(-50%, 100%);
	background: url(../img/bg_about-member_bottom_sp.png) no-repeat center center/100% 100%;
}

.about-member__heading {
	margin-bottom: 35px;
}

.member:not(:last-of-type) {
	margin-bottom: 29px;
}

.member__items {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: 22px 0 0 0;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.member__item {
	width: 47%;
	margin-bottom: 27px;
}

.member__item:not(:nth-of-type(2n)) {
	margin-right: 6%;
}

.member__heading {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	overflow: hidden;
	position: relative;
	font-size: 2.4rem;
	font-family: "TazuganeGothicStdN-Bold", sans-serif;
	line-height: 1.65;
	letter-spacing: 0.05em;
	color: #131257;
}

.member__heading span {
	padding-right: 25px;
	position: relative;
	z-index: 1;
	display: inline-block;
	white-space: nowrap;
	background: #52CECE;
}

.member__heading::after {
	content: '';
	position: absolute;
	top: 13px;
	left: 0;
	width: 200%;
	height: 12px;
	background: url(../img/deco_line_heading_white.png) repeat-x left bottom/auto 12px;
	-webkit-animation: headingLine 1s linear infinite;
	animation: headingLine 1s linear infinite;
}

.member__image {
	margin: 0 auto;
	border-radius: 50%;
	overflow: hidden;
	width: 79%;
}

.member__image img {
	display: block;
	width: 100%;
}

.member__head {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	min-height: 42px;
	margin-top: 16px;
}

.member__position {
	font-size: 1.2rem;
	font-family: "TazuganeGothicStdN-Bold", sans-serif;
	letter-spacing: 0.1em;
	line-height: 1.5;
}

.member__name {
	font-size: 1.6rem;
	font-family: "TazuganeGothicStdN-Bold", sans-serif;
	line-height: 1.5;
	letter-spacing: 0.1em;
}

.member__belongs {
	text-align: center;
	font-size: 1.1rem;
	line-height: 1.5;
	margin-top: 6px;
}

.archive-head__cat-list {
	margin-top: 9px;
}

.archive-head__button {
	margin-top: 14px;
}

.cat-list-3 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.cat-list-3__item {
	font-family: "TazuganeGothicStdN-Bold", sans-serif;
	font-size: 1.4rem;
	line-height: 1.5;
	letter-spacing: 0.15em;
}

.cat-list-3__item a {
	color: #081AB8;
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.cat-list-3__item.is-current a {
	color: #555555;
	pointer-events: none;
}

.cat-list-3__item:not(:last-of-type)::after {
	content: '/';
	font-family: "TazuganeGothicStdN-Bold", sans-serif;
	font-size: 1.2rem;
	color: #D1D1D9;
	display: inline-block;
	padding-right: 6px;
	margin-left: 5px;
	position: relative;
	top: -2px;
}

.archive {
	margin-top: 60px;
}

.breadcrumb .archive {
	margin-top: 0;
}

.archive__item:not(:last-of-type) {
	margin-bottom: 38px;
}

.single-head {
	position: relative;
}

.single-head::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: calc(100% - 70px);
	background: #6AC8E5;
}

.single-head::after {
	content: '';
	position: absolute;
	min-width: 375px;
	left: 50%;
	width: 100vw;
	min-width: 375px;
	pointer-events: none;
	bottom: 70px;
	height: 87px;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	background: url(../img/bg_page-title_top_sp.png) no-repeat center center/100% 100%;
}

.single-kv {
	position: relative;
	padding-top: 76px;
	z-index: 1;
}

.single-kv__wrapper {
	position: relative;
}

.single-kv__heading {
	position: absolute;
	top: -25px;
	right: 16px;
	z-index: 1;
}

.single-kv__heading img {
	display: block;
	height: 36px;
}

.single-kv__image {
	position: relative;
	padding-top: 56.25%;
}

.single-kv__image img {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	-o-object-fit: cover;
	object-fit: cover;
	font-family: "object-fit: cover;";
}

.single-kv__date {
	display: none;
}

.single-title {
	position: relative;
	z-index: 1;
	width: calc(100% - 30px);
	margin: -20px auto 0;
	padding: 22px 14px;
	background: #FFFFFF;
	border-radius: 10px;
	-webkit-box-shadow: 10px 10px 20px rgba(5, 14, 48, 0.1);
	box-shadow: 10px 10px 20px rgba(5, 14, 48, 0.1);
}

.single-title__date {
	display: block;
	margin-bottom: 10px;
	padding-left: 3px;
	font-family: "Montserrat", sans-serif;
	font-style: 1.4rem;
	letter-spacing: 0.05em;
	color: #555555;
}

.single-title__title {
	font-family: "TazuganeGothicStdN-Bold", sans-serif;
	font-size: 2.6rem;
	line-height: 1.5;
	letter-spacing: 0.1em;
	-webkit-font-feature-settings: 'palt' on;
	font-feature-settings: 'palt' on;
	color: #131257;
}

.single-title__wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-top: 12px;
}

.single-title__category {
	-ms-flex-negative: 0;
	flex-shrink: 0;
	max-width: 50%;
}

.single-title__tags {
	margin-left: 15px;
	padding-left: 10px;
	border-left: 1px solid #D1D1D9;
	padding: 2px 0 2px 10px;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	max-width: 50%;
}

.single-content {
	position: relative;
	padding-top: 43px;
	margin-top: 52px;
}

.single-content::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 25px;
	height: 5px;
	background: url(../img/deco_dots.svg) no-repeat center center/contain;
}

.the_content::before,
.the_content::after {
	content: "";
	display: table;
}

.the_content::after {
	clear: both;
}

.the_content > :first-child {
	margin-top: 0;
}

.the_content h2 {
	position: relative;
	margin-top: 70px;
	margin-bottom: 25px;
	padding-bottom: 23px;
	font-family: "TazuganeGothicStdN-Bold", sans-serif;
	font-size: 2.6rem;
	line-height: 1.5;
	letter-spacing: 0.1em;
	-webkit-font-feature-settings: 'palt' on;
	font-feature-settings: 'palt' on;
	overflow: hidden;
}

.the_content h2::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 200%;
	height: 12px;
	background: url(../img/deco_line_heading.png) repeat-x left bottom/auto 12px;
	-webkit-animation: headingLine 1s linear infinite;
	animation: headingLine 1s linear infinite;
}

.the_content h3 {
	margin-top: 70px;
	margin-bottom: 15px;
	font-family: "TazuganeGothicStdN-Bold", sans-serif;
	font-size: 2.4rem;
	line-height: 1.5;
	letter-spacing: 0.1em;
	-webkit-font-feature-settings: 'palt' on;
	font-feature-settings: 'palt' on;
}

.the_content h4 {
	margin-top: 70px;
	margin-bottom: 20px;
	font-family: "TazuganeGothicStdN-Bold", sans-serif;
	font-size: 2.1rem;
	line-height: 1.55;
	letter-spacing: 0.1em;
	-webkit-font-feature-settings: 'palt' on;
	font-feature-settings: 'palt' on;
}

.the_content h5 {
	margin-top: 70px;
	margin-bottom: 20px;
	font-family: "TazuganeGothicStdN-Bold", sans-serif;
	font-size: 1.8rem;
	line-height: 1.5;
	letter-spacing: 0.1em;
	-webkit-font-feature-settings: 'palt' on;
	font-feature-settings: 'palt' on;
}

.the_content p {
	font-size: 1.6rem;
	line-height: 2;
	text-align: justify;
	letter-spacing: 0.1em;
	-webkit-font-feature-settings: 'palt' on;
	font-feature-settings: 'palt' on;
}

.the_content p:not(:last-of-type) {
	margin-bottom: 70px;
}

.the_content figure {
	margin-bottom: 70px;
}

.the_content figure img {
	display: block;
}

.the_content figure figcaption {
	display: block;
	margin-top: 12px;
	font-size: 1.4rem;
	line-height: 1.5;
	text-align: justify;
	letter-spacing: 0.1em;
	-webkit-font-feature-settings: 'palt' on;
	font-feature-settings: 'palt' on;
	color: #555555;
}

.the_content a {
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
	color: #081AB8;
}

.the_content strong {
	font-family: "TazuganeGothicStdN-Bold", sans-serif;
}

.the_content .alignleft {
	margin-bottom: 17px;
}

.the_content .alignright {
	margin-bottom: 17px;
}

.the_content .iframe-wrap {
	position: relative;
	display: block;
	width: 100%;
	padding-top: 56.25%;
	margin-top: 70px;
	margin-bottom: 85px;
}

.the_content .iframe-wrap iframe {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.download-link {
	margin-top: 71px;
}

.download-link__icon {
	width: 19px;
	height: 19px;
}

.download-link + .download-link {
	margin-top: 16px;
}

.single-nav {
	position: relative;
	margin-top: 46px;
	padding-top: 131px;
}

.single-nav::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	width: 100%;
	min-width: 375px;
	height: 386px;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	background: url(../img/bg_single-nav_sp.png) no-repeat top center/100% 100%;
}

.single-nav__items {
	position: relative;
}

.single-nav__item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}

.single-nav__item:not(:last-of-type) {
	margin-bottom: 35px;
}

.single-nav__image {
	position: relative;
	width: 29%;
	padding-top: 16%;
	margin-right: 5.5%;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	-webkit-box-shadow: 10px 10px 20px rgba(5, 14, 48, 0.1);
	box-shadow: 10px 10px 20px rgba(5, 14, 48, 0.1);
	border-radius: 5px;
	overflow: hidden;
}

.single-nav__image img {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	font-family: "object-fit: cover;";
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.single-nav__heading {
	position: relative;
	display: inline-block;
	font-family: "TazuganeGothicStdN-Bold", sans-serif;
	font-size: 1.2rem;
	line-height: 1.5;
	letter-spacing: 0.1em;
	-webkit-font-feature-settings: 'palt' on;
	font-feature-settings: 'palt' on;
	color: #131257;
}

.single-nav__heading--next {
	padding-right: 18px;
}

.single-nav__heading--next::after {
	content: '';
	width: 11px;
	height: 11px;
	position: absolute;
	top: 50%;
	right: 0;
	-webkit-transform: translateY(-58%);
	-ms-transform: translateY(-58%);
	transform: translateY(-58%);
	background: url(../img/icon_arrow_next.svg) no-repeat center center/contain;
}

.single-nav__heading--prev {
	padding-left: 18px;
}

.single-nav__heading--prev::before {
	content: '';
	width: 11px;
	height: 11px;
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-58%);
	-ms-transform: translateY(-58%);
	transform: translateY(-58%);
	background: url(../img/icon_arrow_prev.svg) no-repeat center center/contain;
}

.single-nav__title {
	display: block;
	margin-top: 8px;
	font-family: "TazuganeGothicStdN-Bold", sans-serif;
	font-size: 1.4rem;
	line-height: 1.5;
	letter-spacing: 0.1em;
	-webkit-font-feature-settings: 'palt' on;
	font-feature-settings: 'palt' on;
	color: #081AB8;
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.single-classify {
	position: relative;
	margin-top: 35px;
}

.classify__section {
	width: 100%;
	padding: 10px 0;
	border-top: 2px dotted #131257;
}

.classify__section:not(:last-of-type) {
	margin-bottom: 35px;
}

.classify__section--mbsm:not(:last-of-type) {
	margin-bottom: 11px;
}

.classify__heading {
	margin-bottom: 10px;
	font-family: "TazuganeGothicStdN-Bold", sans-serif;
	font-size: 1.6rem;
	line-height: 1.65;
	letter-spacing: 0.15em;
	-webkit-font-feature-settings: 'palt' on;
	font-feature-settings: 'palt' on;
	color: #131257;
}

.modal-classify {
	padding: 24px 6%;
}

.modal-classify__heading {
	margin-bottom: 18px;
}

.archive-fixed-head {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	background: rgba(255, 255, 255, 0.65);
	padding: 61px 0 12px;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.archive-fixed-head.is-visible {
	opacity: 1;
	visibility: visible;
}

.archive-fixed-head__button {
	margin-top: 3px;
}

.policy:not(:last-of-type) {
	margin-bottom: 80px;
}

.policy__section-1:not(:last-child) {
	margin-bottom: 40px;
}

.policy__section-2 {
	margin-top: 40px;
}

.policy__section-2--mt {
	margin-top: 25px;
}

.policy__section-3 {
	margin-top: 19px;
}

.policy__contact {
	margin-top: 71px;
}

.activity-map {
	width: 100vw;
	padding-top: 123%;
	margin-top: 35px;
	background: #cccccc;
	position: relative;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	overflow: hidden;
	background: #cccccc;
	overflow: hidden;
	margin-top: 20px;
	margin-bottom: 60px;
}

.about-action {
	margin-top: 128px;
}

.about-action__section:not(:last-of-type) {
	margin-bottom: 127px;
}

.about-action__heading {
	margin-bottom: 25px;
}

.about-action__content {
	margin-top: 47px;
}

.about-action__heading-2 {
	margin-bottom: 22px;
}

.about-action__item:not(:last-of-type) {
	margin-bottom: 40px;
}

.about-action__button {
	margin-top: 36px;
}

.about-intro {
	position: relative;
	padding-top: 12px;
}

.about-intro__heading {
	margin-bottom: 22px;
}

.about-intro__section-1:not(:last-child) {
	margin-bottom: 55px;
}

.about-intro__section-2 {
	margin-top: 30px;
}

.link__block {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-top: 60px;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.link__section {
	margin-bottom: 35px;
}

.link__section:first-child {
	margin-bottom: 35px;
}

.list-1__item {
	font-size: 1.4rem;
	letter-spacing: 0.1em;
	line-height: 1.5;
	padding-left: 20px;
	position: relative;
}

.list-1__item:not(:last-of-type) {
	margin-bottom: 8px;
}

.list-1__item::before {
	content: "";
	display: block;
	position: absolute;
	height: 1px;
	width: 10px;
	left: -1px;
	top: 9px;
	background-color: #081AB8;
}

.list-2__item {
	padding-left: 25px;
}

.list-2__item:not(:last-of-type) {
	margin-bottom: 8px;
}

.list-2__item a {
	color: #081AB8;
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
	font-size: 1.6rem;
	font-family: "TazuganeGothicStdN-Bold", sans-serif;
	line-height: 1.5;
	letter-spacing: 0.09em;
	position: relative;
}

.list-2__item a::before {
	content: "";
	position: absolute;
	background: url("../img/icon_site.svg");
	width: 17px;
	height: 17px;
	left: -27px;
	top: 2px;
}

.list-3 {
	counter-reset: item;
}

.list-3__item {
	position: relative;
	margin-left: 20px;
}

.list-3__item::before {
	counter-increment: item;
	content: counter(item) ".";
	padding-right: 2px;
	position: absolute;
	top: 0;
	right: 100%;
}

.form {
	margin-top: 40px;
}

.form__radio {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-top: 0px;
}

.form__row {
	margin-bottom: 20px;
}

.form__row--mbsm {
	margin-bottom: 5px;
}

.mw_wp_form_confirm .form__row {
	margin-bottom: 20px;
}

.form__row:last-of-type {
	margin-bottom: 0;
}

.form__head {
	font-size: 1.4rem;
	font-family: "TazuganeGothicStdN-Bold", sans-serif;
	color: #131257;
	letter-spacing: 0.05em;
	line-height: 1.6;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	text-align: left;
	padding: 8px 20px 7px 0;
	position: relative;
}

.form__head br {
	display: none;
}

.mw_wp_form_confirm .form__head br {
	display: none;
}

.mw_wp_form_confirm .form__head {
	display: block;
}

.form__main {
	font-size: 1.6rem;
	line-height: 1.85;
	text-align: justify;
	letter-spacing: 0.1em;
	-webkit-font-feature-settings: 'palt' on;
	font-feature-settings: 'palt' on;
}

.form__button {
	margin-top: 37px;
}

.mw_wp_form_confirm .form__button {
	margin-top: 54px;
}

.form__back {
	margin-top: 37px;
	text-align: center;
}

.form .error {
	font-size: 1rem !important;
	color: #DD3D3D !important;
	display: block !important;
	margin-top: 5.5px !important;
	letter-spacing: 0.1em !important;
	line-height: 1.5 !important;
}

.contact-intro__heading {
	margin-bottom: 10px;
}

.contact-intro__button {
	margin-top: 30px;
}

.mwform-radio-field {
	width: 50%;
	margin-bottom: 8px;
	font-size: 1.6rem;
	letter-spacing: 0.05em;
}

.mwform-radio-field label {
	display: block;
}

.mwform-radio-field input {
	display: none;
	opacity: 0;
	width: 0;
	height: 0;
	margin: 0;
}

.mwform-radio-field input:checked + .mwform-radio-field-text {
	color: #081AB8;
}

.mwform-radio-field input:checked + .mwform-radio-field-text::after {
	opacity: 1;
}

.mwform-radio-field.horizontal-item {
	margin-left: 0 !important;
}

.mwform-radio-field .mwform-radio-field-text {
	display: inline-block;
	padding-left: 22px;
	position: relative;
	cursor: pointer;
}

.mwform-radio-field .mwform-radio-field-text::before {
	content: "";
	position: absolute;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	border: 1px solid #081AB8;
	left: 2px;
	top: 5px;
}

.mwform-radio-field .mwform-radio-field-text::after {
	content: "";
	position: absolute;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: #081AB8;
	top: 9px;
	left: 6px;
	opacity: 0;
}

.input {
	height: 47px;
	width: 100%;
	border: 1px solid #F2F3FA;
	background-color: #F2F3FA;
	font-size: 1.6rem;
	letter-spacing: 0.05em;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding-left: 15px;
	font-family: sans-serif;
}

.input::-webkit-input-placeholder {
	color: #9C9C9C;
	letter-spacing: 0.02em;
	font-family: sans-serif;
}

.input::-moz-placeholder {
	color: #9C9C9C;
	letter-spacing: 0.02em;
	font-family: sans-serif;
}

.input:-ms-input-placeholder {
	color: #9C9C9C;
	letter-spacing: 0.02em;
	font-family: sans-serif;
}

.input::-ms-input-placeholder {
	color: #9C9C9C;
	letter-spacing: 0.02em;
	font-family: sans-serif;
}

.input::placeholder {
	color: #9C9C9C;
	letter-spacing: 0.02em;
	font-family: sans-serif;
}

.input--textarea {
	height: auto;
	padding: 15px;
}

.is-error .input {
	border: 1px solid #DD3D3D;
}

.is-inputed .input {
	border: 1px solid #F2F3FA;
}

.input:focus {
	border-color: #081AB8;
}

@media screen and (min-width: 768px) {

.l-wrapper { /* pc */
	width: 81.24%;
	max-width: 1400px;
}

.l-pc-wrapper { /* pc */
	width: 81.24%;
	max-width: 1400px;
}

.l-page-content { /* pc */
	margin-top: -55px;
	padding-bottom: 147px;
}

.l-offset-1 { /* pc */
	margin-left: 8.33333%;
}

.l-offset-2 { /* pc */
	margin-left: 16.66667%;
}

.l-offset-3 { /* pc */
	margin-left: 25%;
}

.l-offset-4 { /* pc */
	margin-left: 33.33333%;
}

.l-offset-5 { /* pc */
	margin-left: 41.66667%;
}

.l-offset-6 { /* pc */
	margin-left: 50%;
}

.l-offset-7 { /* pc */
	margin-left: 58.33333%;
}

.l-offset-8 { /* pc */
	margin-left: 66.66667%;
}

.l-offset-9 { /* pc */
	margin-left: 75%;
}

.l-offset-10 { /* pc */
	margin-left: 83.33333%;
}

.l-offset-11 { /* pc */
	margin-left: 91.66667%;
}

.l-offset-12 { /* pc */
	margin-left: 100%;
}

.l-col-1 { /* pc */
	width: 8.33333%;
}

.l-col-2 { /* pc */
	width: 16.66667%;
}

.l-col-3 { /* pc */
	width: 25%;
}

.l-col-4 { /* pc */
	width: 33.33333%;
}

.l-col-5 { /* pc */
	width: 41.66667%;
}

.l-col-6 { /* pc */
	width: 50%;
}

.l-col-7 { /* pc */
	width: 58.33333%;
}

.l-col-8 { /* pc */
	width: 66.66667%;
}

.l-col-9 { /* pc */
	width: 75%;
}

.l-col-10 { /* pc */
	width: 83.33333%;
}

.l-col-11 { /* pc */
	width: 91.66667%;
}

.l-col-12 { /* pc */
	width: 100%;
}

.header-logo { /* pc */
	top: 30px;
	left: 31px;
	width: 34px;
}

.header-logo:hover { /* pc */
	opacity: .7;
}

.header-menu { /* pc */
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	padding: 70px 4.8vw 11.5vh 6.2vw;
}

.header-menu__bg { /* pc */
	top: 92px;
}

.header-menu__bg::before { /* pc */
	min-width: 1280px;
	height: 234px;
	background-image: url(../img/bg_menu_top_pc.png);
}

.header-menu__content { /* pc */
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	padding: 0;
}

.nav { /* pc */
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	padding-bottom: 18px;
}

.nav__items { /* pc */
	text-align: left;
}

.nav__item:not(:last-of-type) { /* pc */
	margin-bottom: 30px;
}

.nav__link:hover { /* pc */
}

.nav__link:hover .nav__jp {
	color: #0043EF;
}

.nav__link:hover .nav__en__default {
	opacity: 0;
}

.nav__link:hover .nav__en__hover {
	opacity: 1;
}

.nav__jp { /* pc */
	font-size: 1.8rem;
}

.nav__en { /* pc */
	height: 40px;
	padding-left: 0;
}

.nav__sub-items { /* pc */
	margin-top: 0;
	text-align: left;
	margin-left: 5vw;
}

.nav__sub-item:not(:last-of-type) { /* pc */
	margin-bottom: 10px;
}

.nav__sub-item a { /* pc */
	font-size: 1.6rem;
}

.nav__sub-item a:hover { /* pc */
	color: #0043EF;
}

.header-banner { /* pc */
	margin-top: 0;
}

.menu-btn { /* pc */
	top: 30px;
	right: 30px;
	width: 50px;
	height: 50px;
}

.menu-btn__icon { /* pc */
	width: 30px;
	height: 7px;
}

.footer { /* pc */
	padding: 20px 0 37px;
}

.footer::before { /* pc */
	min-width: 1280px;
	height: 126px;
	background-image: url(../img/bg_footer_top_pc.png);
}

.footer-nav { /* pc */
	margin-top: 0;
	padding: 35px 0 15px 22px;
}

.footer-nav::before { /* pc */
	left: 0;
	width: 50vw;
}

.footer-nav__inner { /* pc */
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.footer-nav__heading { /* pc */
	-webkit-writing-mode: vertical-lr;
	-ms-writing-mode: tb-lr;
	writing-mode: vertical-lr;
	white-space: nowrap;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.footer-nav__items { /* pc */
	width: 85%;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.footer-nav__item { /* pc */
	width: calc(50% - 15px);
	width: 46%;
	margin-bottom: 7px;
}

.footer-nav__link { /* pc */
	padding: 3px 5px 0px;
	font-size: 1.4rem;
}

.footer-nav__link:hover { /* pc */
	background: #FFFFFF;
}

.footer-bottom { /* pc */
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 80px 40px 0 40px;
}

.footer-bottom__links { /* pc */
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.footer-bottom__wrap { /* pc */
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-top: 0;
	padding-top: 5px;
}

.footer-bottom__logo { /* pc */
	margin: 0;
}

.footer-bottom__logo img { /* pc */
	margin-left: 0;
}

.footer-bottom__copy { /* pc */
	padding-top: 8px;
	margin-left: 20px;
}

.footer-contact__button { /* pc */
	margin-top: 34px;
}

.modal { /* pc */
	width: 81.24%;
	max-width: 1400px;
}

.modal--narrow { /* pc */
	width: 520px;
}

.modal__inner { /* pc */
	padding: 30px 30px 20px;
}

.modal__close { /* pc */
	-webkit-transform: translate(50%, -50%);
	-ms-transform: translate(50%, -50%);
	transform: translate(50%, -50%);
}

.modal__close:hover { /* pc */
	background: #0043EF;
}

.is-hover .card01__image img { /* pc */
	-webkit-transform: scale(1.2);
	-ms-transform: scale(1.2);
	transform: scale(1.2);
}

.card01__date { /* pc */
	font-size: 1.4rem;
	left: -24px;
}

.home-news__item:nth-of-type(1) .card01__heading--home-news,
.home-news__item:nth-of-type(2) .card01__heading--home-news { /* pc */
	font-size: 2.1rem;
}

.card01__heading--home-archive { /* pc */
	font-size: 1.6rem;
}

.is-hover .card01__heading a { /* pc */
	color: #0043EF;
}

.heading-1--pc-right { /* pc */
	text-align: right;
}

.heading-1--pc-left { /* pc */
	text-align: left;
}

.heading-1__jp { /* pc */
	font-size: 2.4rem;
}

.heading-1__jp--bottom { /* pc */
	top: 32px;
}

.heading-1__jp--lg { /* pc */
	top: 4px;
	font-size: 3.8rem;
	letter-spacing: 0.1em;
}

.heading-1__en { /* pc */
	height: 59px;
}

.heading-2 { /* pc */
	font-size: 3.8rem;
}

.heading-3__en { /* pc */
	font-size: 1.6rem;
}

.heading-3__en--sm { /* pc */
	font-size: 1rem;
}

.heading-3__jp { /* pc */
	line-height: 1.4;
	font-size: 3.8rem;
}

.heading-3__jp--sm { /* pc */
	font-size: 2.4rem;
	margin-top: 3px;
}

.heading-4 { /* pc */
	font-size: 2.8rem;
}

.heading-5 { /* pc */
	font-size: 3.8rem;
}

.heading-5--mblg { /* pc */
	margin-bottom: 40px;
}

.heading-9 { /* pc */
	font-size: 3.8rem;
}

.cat-list__item:hover { /* pc */
	color: #0043EF;
}

.cat-list-2__item a:hover { /* pc */
	color: #081AB8;
}

.tag-list__item:hover { /* pc */
	color: #0043EF;
}

.button-1 { /* pc */
	width: 306px;
}

.button-1--pc-center { /* pc */
	margin: 0 auto;
}

.button-1--search { /* pc */
	width: 100px;
}

.button-1:hover { /* pc */
	background: #0043EF;
	color: #FFFFFF;
	border-color: #0043EF;
}

.button-1:hover::before {
	-webkit-transform: translateX(0);
	-ms-transform: translateX(0);
	transform: translateX(0);
}

.button-2:hover { /* pc */
	color: #0043EF;
}

.button-3:hover { /* pc */
	color: #0043EF;
}

.button-3:hover::before {
	background: url(../img/icon_arrow_back_hover.svg) no-repeat center center/contain;
}

.button-3:hover::after {
	opacity: 0;
}

.text--pc-center { /* pc */
	text-align: center;
}

.text a:hover { /* pc */
	color: #0043EF;
}

.page-head { /* pc */
	height: 370px;
	background: url(../img/bg_page-head_pc.jpg) no-repeat center center/cover;
}

.page-head::before { /* pc */
	min-width: 1280px;
	height: 250px;
	background-image: url(../img/bg_page-title_top_pc.png);
}

.page-head__heading { /* pc */
	margin-bottom: 72px;
}

.page-head__jp { /* pc */
	font-size: 2.4rem;
}

.page-head__jp--bottom { /* pc */
	top: 32px;
}

.page-head__en { /* pc */
	height: 59px;
}

.pagination { /* pc */
	margin-top: 18px;
	padding: 18px 0;
}

.pagination .page-numbers:not(.current):not(.prev):not(.next):not(.dots) { /* pc */
	display: block;
}

.pagination .page-numbers:not(.current):not(.prev):not(.next):not(.dots):hover { /* pc */
	color: #0043EF;
}

.pagination .page-numbers:not(.prev):not(.next) { /* pc */
	padding: 0 13px;
	font-size: 1.6rem;
}

.pagination .page-numbers.current { /* pc */
	color: #D1D1D9;
}

.pagination .page-numbers.dots { /* pc */
	display: block;
	color: #222222;
	font-family: "Montserrat", sans-serif;
	font-weight: 400;
	position: relative;
	top: -5px;
}

.pagination .prev,
.pagination .next { /* pc */
}

.breadcrumb { /* pc */
	margin-top: 80px;
	padding: 0;
	margin-left: 0;
	margin-right: 0;
}

.breadcrumb a:hover { /* pc */
	color: #0043EF;
}

.mv { /* pc */
	padding: 0;
	height: 800px;
	height: 100vh;
	min-height: 750px;
}

.mv--no-post { /* pc */
	min-height: 750px;
}

.mv__outer { /* pc */
	width: 724px;
	margin: 0;
	height: 100%;
	padding: 10px 0 100px;
	background-size: 100% auto;
	background-position: top 57% center;
}

.mv--no-post .mv__outer { /* pc */
	width: 724px;
	height: 100%;
}

.mv__wrapper { /* pc */
	width: 306px;
}

.mv__logo { /* pc */
	width: 100px;
}

.mv-content { /* pc */
	width: 306px;
	padding-top: 0;
	margin: 104px auto 0;
}

.mv-control-number__heading { /* pc */
	margin-bottom: 7px;
	font-size: 2.4rem;
}

.mv-control-number__main img { /* pc */
	height: 71px;
}

.mv-pagination { /* pc */
	margin-top: 60px;
}

.mv-control-arrows { /* pc */
	top: 50px;
}

.mv-control-arrows__item { /* pc */
}

.mv-control-arrows__item--prev { /* pc */
	margin-left: -98px;
}

.mv-control-arrows__item--next { /* pc */
	margin-left: 98px;
}

.mv-control-arrows__button { /* pc */
}

.mv-control-arrows__button:hover { /* pc */
}

.mv-control-arrows__button:hover::before {
	border-color: #0043EF;
}

.mv-no-post { /* pc */
	padding-top: 20px;
}

.mv-no-post__logo { /* pc */
	width: 220px;
	margin-bottom: 60px;
}

.mv-banner { /* pc */
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	bottom: 33px;
	padding: 0 27px;
}

.slide-archive__items { /* pc */
	margin-top: 17px;
}

.slide-archive__item { /* pc */
	width: 26%;
	margin-top: 20px;
	margin-right: 5.9%;
}

.slide-archive__item:nth-of-type(1) { /* pc */
	width: 36.5%;
	margin-top: 0;
}

.slide-archive__item:nth-of-type(even) { /* pc */
	margin-top: 60px;
}

.slide-archive__item:last-of-type:not(:nth-of-type(1)) { /* pc */
}

.slide-archive__wrap { /* pc */
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-top: 42px;
}

.slide-archive__button { /* pc */
	margin-top: 0;
}

.slide-archive-indicate { /* pc */
	margin-right: 22px;
	margin-top: 5px;
}

.slide-archive-nav__item:not(:last-of-type) { /* pc */
	margin-right: 10px;
}

.slide-archive-nav__button { /* pc */
	width: 50px;
	height: 50px;
}

.slide-archive-nav__button:hover { /* pc */
	background: #0043EF;
	border-color: #0043EF;
}

.slide-archive-nav__button:hover::before {
	border-color: #FFFFFF;
}

.home-news { /* pc */
	padding-bottom: 101px;
}

.home-news__content { /* pc */
	margin-top: -131px;
}

.home-news__items { /* pc */
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-top: -61px;
}

.home-news__item { /* pc */
	width: calc(100% / 3 - 40px);
	margin-bottom: 17px;
}

.home-news__item:nth-of-type(1),
.home-news__item:nth-of-type(2) { /* pc */
	width: calc(50% - 30px);
}

.home-news__item:nth-of-type(1) { /* pc */
	margin-right: 60px;
}

.home-news__item:nth-of-type(2) { /* pc */
	margin-top: 41px;
}

.home-news__item:nth-of-type(3),
.home-news__item:nth-of-type(4) { /* pc */
	margin-right: 60px;
}

.home-news__item:nth-of-type(4) { /* pc */
	padding-top: 40px;
}

.home-news__item:nth-of-type(5) { /* pc */
	padding-top: 80px;
}

.home-news__item:not(:last-of-type) { /* pc */
	margin-bottom: 17px;
}

.home-news__button { /* pc */
	margin-top: 31px;
}

.home-news-head { /* pc */
	margin-top: 82px;
	margin-top: 0;
	padding: 120px 0 105px;
}

.home-news-head::before,
.home-news-head::after { /* pc */
	min-width: 1280px;
}

.home-news-head::before { /* pc */
	height: 198px;
	background-image: url(../img/bg_home-news_top_pc.png);
}

.home-news-head::after { /* pc */
	height: 250px;
	background-image: url(../img/bg_home-news_bottom_pc.png);
}

.home-news-head--no-post { /* pc */
	margin-bottom: 0;
	padding-top: 40px;
	padding-bottom: 150px;
	margin-bottom: -100px;
}

.home-news-head--no-post .home-news-head__wrapper::before { /* pc */
	height: 12px;
	bottom: -95px;
	background: url(../img/deco_line_heading_white.png) repeat-x left bottom/auto 12px;
}

.home-news-head__wrapper::after { /* pc */
	top: -65px;
	right: -4px;
}

.home-news-head__content { /* pc */
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	width: 97%;
}

.home-news-head__copy { /* pc */
	width: 41%;
}

.important-news { /* pc */
	width: 51.5%;
	padding-top: 43px;
	margin-bottom: 0;
}

.important-news__more { /* pc */
	-webkit-transform: translate(50%, -50%);
	-ms-transform: translate(50%, -50%);
	transform: translate(50%, -50%);
}

.important-news__more:hover { /* pc */
	background: #0043EF;
}

.home-archive { /* pc */
	padding: 20px 0 0px;
	margin: 57px 0 250px;
}

.home-archive__bg { /* pc */
	height: calc(100% - 58px);
}

.home-archive::before,
.home-archive::after { /* pc */
	min-width: 1280px;
}

.home-archive::before { /* pc */
	height: 198px;
	background-image: url(../img/bg_home-archive_top_pc.png);
}

.home-archive::after { /* pc */
	height: 250px;
	bottom: 59px;
	background-image: url(../img/bg_home-archive_bottom_pc.png);
}

.home-archive__section:not(:last-of-type) { /* pc */
	margin-bottom: 143px;
}

.home-archive__head { /* pc */
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.home-archive__category { /* pc */
	margin-top: 3px;
	margin-left: 40px;
}

.home-activity { /* pc */
	margin-top: -70px;
	padding: 0px 0 164px;
}

.home-activity__wrapper::before { /* pc */
	top: 4px;
	left: 7.7%;
	left: 6.3vw;
}

.home-activity__wrapper::after { /* pc */
	top: 10px;
	right: 5.2%;
	right: 4.2vw;
}

.home-activity__archive { /* pc */
	margin-top: 80px;
}

.home-activity__map { /* pc */
	width: 100%;
	margin-top: 35px;
	padding-top: 46.2%;
	left: 0;
	-webkit-transform: translateX(0);
	-ms-transform: translateX(0);
	transform: translateX(0);
	border-radius: 10px;
}

.about-member { /* pc */
	margin-top: 176px;
	padding: 0;
}

.about-member__bg { /* pc */
	height: calc(100% - 90px);
}

.about-member::before,
.about-member::after { /* pc */
	min-width: 1280px;
}

.about-member::before { /* pc */
	height: 200px;
	background-image: url(../img/bg_about-member_top_pc.png);
}

.about-member::after { /* pc */
	height: 250px;
	bottom: 90px;
	background-image: url(../img/bg_about-member_bottom_pc.png);
}

.about-member__wrapper { /* pc */
	position: relative;
	z-index: 1;
	top: -10px;
}

.about-member__heading { /* pc */
	margin-bottom: 30px;
}

.member:not(:last-of-type) { /* pc */
	margin-bottom: 58px;
}

.member__items { /* pc */
	margin: 22px 3% 0;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
}

.member__item { /* pc */
	margin-right: 0;
}

.member__item:not(:nth-of-type(2n)) { /* pc */
	margin-right: 0;
}

.member__item { /* pc */
	width: 15%;
	margin-bottom: 0;
}

.member__item:not(:nth-of-type(5n)) {
	margin-right: 6.2%;
}

.member__heading { /* pc */
}

.member__image { /* pc */
	width: 82%;
}

.archive-head__button { /* pc */
	margin-top: 8px;
}

.cat-list-3__item a:hover { /* pc */
	color: #0043EF;
}

.archive { /* pc */
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.breadcrumb .archive { /* pc */
	display: inline;
}

.archive__item { /* pc */
	width: 29.5%;
	margin-bottom: 45px;
}

.archive__item:not(:last-of-type) { /* pc */
	margin-bottom: 45px;
}

.archive__item:not(:nth-of-type(3n)) { /* pc */
	margin-right: 5.75%;
}

.single-head::before { /* pc */
	height: calc(100% - 59px);
}

.single-head::after { /* pc */
	min-width: 1280px;
	bottom: 59px;
	height: 250px;
	background-image: url(../img/bg_page-title_top_pc.png);
}

.single-kv { /* pc */
	padding-top: 61px;
}

.single-kv__heading { /* pc */
	top: -18px;
	right: 25px;
}

.single-kv__heading img { /* pc */
	height: 59px;
}

.single-kv__image { /* pc */
	border-radius: 10px;
	overflow: hidden;
}

.single-kv__date { /* pc */
	display: block;
	position: absolute;
	bottom: -34px;
	right: 0;
	font-family: "Montserrat", sans-serif;
	letter-spacing: 0.05em;
	color: #555555;
}

.single-title { /* pc */
	width: 83.5%;
	margin: -50px 0 0 -30px;
	padding: 23px 30px 29px;
}

.single-title__date { /* pc */
	display: none;
}

.single-title__title { /* pc */
	font-size: 2.8rem;
}

.single-content { /* pc */
	padding-top: 67px;
	margin-top: 150px;
}

.the_content h2 { /* pc */
	padding-bottom: 18px;
	font-size: 3rem;
}

.the_content h3 { /* pc */
	font-size: 2.6rem;
}

.the_content p:not(:last-of-type) { /* pc */
	margin-bottom: 65px;
}

.the_content figure { /* pc */
	margin-bottom: 70px;
}

.the_content figure figcaption { /* pc */
	margin-top: 20px;
}

.the_content a:hover { /* pc */
	color: #0043EF;
}

.the_content .alignleft { /* pc */
	float: left;
	width: 47.5%;
	margin-right: 43px;
	margin-bottom: 0;
}

.the_content .alignright { /* pc */
	float: right;
	width: 47.5%;
	margin-left: 43px;
	margin-bottom: 0;
}

.download-link + .download-link { /* pc */
	margin-top: 10px;
}

.single-nav { /* pc */
	margin-top: 61px;
	padding-top: 149px;
}

.single-nav::before { /* pc */
	min-width: 1280px;
	height: 482px;
	background: url(../img/bg_single-nav_pc.png) no-repeat top center/100% 100%;
}

.single-nav__item:not(:last-of-type) { /* pc */
	margin-bottom: 30px;
}

.single-nav__item:hover .single-nav__title { /* pc */
	color: #0043EF;
}

.single-nav__item:hover .single-nav__image img { /* pc */
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}

.single-nav__image { /* pc */
	width: 17.5%;
	padding-top: 9.6%;
	margin-right: 2.2%;
	border-radius: 10px;
}

.single-nav__heading { /* pc */
}

.single-nav__title { /* pc */
	font-size: 1.6rem;
}

.single-classify { /* pc */
	margin-top: 63px;
}

.classify__section { /* pc */
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.classify__heading { /* pc */
	width: 109px;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.classify__main { /* pc */
	width: calc(100% - 109px);
	padding-top: 5px;
}

.archive-fixed-head { /* pc */
	padding: 22px 0 21px;
}

.archive-fixed-head__button { /* pc */
	margin-top: 6px;
}

.policy:not(:last-of-type) { /* pc */
	margin-bottom: 128px;
}

.policy__section-1:not(:last-child) { /* pc */
	margin-bottom: 45px;
}

.activity-map { /* pc */
	width: 100%;
	left: 0;
	-webkit-transform: translateX(0);
	-ms-transform: translateX(0);
	transform: translateX(0);
	border-radius: 10px;
	padding-top: 46.2%;
	margin-top: 30px;
	margin-bottom: 80px;
}

.about-action { /* pc */
	margin-top: 155px;
}

.about-action__section:not(:last-of-type) { /* pc */
	margin-bottom: 136px;
}

.about-action__items { /* pc */
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.about-action__item { /* pc */
	width: calc(100% / 3 - 40px);
}

.about-action__item:not(:nth-of-type(3n)) { /* pc */
	margin-right: 60px;
}

.about-action__item:not(:last-of-type) { /* pc */
	margin-bottom: 0;
}

.about-action__button { /* pc */
	margin-top: 37px;
}

.about-intro { /* pc */
	padding-top: 15px;
}

.about-intro__heading { /* pc */
	margin-bottom: 20px;
}

.link__block { /* pc */
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	margin-top: 45px;
}

.link__section { /* pc */
	margin-bottom: 54px;
}

.link__section:first-child { /* pc */
	margin-bottom: 54px;
}

.list-2__item a:hover { /* pc */
	color: #0043EF;
}

.form { /* pc */
	margin-top: 40px;
}

.mw_wp_form_confirm .form { /* pc */
	margin-top: 88px;
}

.form__radio { /* pc */
	padding-top: 10px;
}

.form__row { /* pc */
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 28px;
}

.form__row--mbsm { /* pc */
	margin-bottom: 13px;
}

.mw_wp_form_confirm .form__row { /* pc */
	display: block;
	margin-bottom: 22px;
}

.form__row:last-of-type { /* pc */
	margin-bottom: 0;
}

.form__head { /* pc */
	width: 24.5%;
	text-align: right;
	-ms-flex-item-align: start;
	align-self: flex-start;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
	padding: 14px 28px 14px 0;
}

.form__head br { /* pc */
	display: block;
}

.mw_wp_form_confirm .form__head { /* pc */
	width: 100%;
	padding: 0;
	margin-bottom: 3px;
}

.form__head span { /* pc */
	right: 18px;
	bottom: 17px;
	position: absolute;
}

.mw_wp_form_confirm .form__head { /* pc */
	text-align: left;
}

.mw_wp_form_confirm .form__head span { /* pc */
	position: static;
}

.form__main { /* pc */
	width: 49%;
}

.mw_wp_form_confirm .form__main { /* pc */
	width: 100%;
}

.contact-intro__button { /* pc */
	margin-top: 55px;
}

.mwform-radio-field { /* pc */
	width: auto;
}

.mwform-radio-field:not(:last-of-type) { /* pc */
	margin-right: 20px;
}

}

@media screen and (max-width: 767px) {

.sp-only { /* sp */
	display: block !important;
}

.sp-only-2 { /* sp */
	display: inline-block !important;
}

.pc-only { /* sp */
	display: none !important;
}

.pc-only-2 { /* sp */
	display: none !important;
}

}

@-webkit-keyframes headingLine {

from {
	-webkit-transform: translateX(0);
	transform: translateX(0);
}

to {
	-webkit-transform: translateX(-40px);
	transform: translateX(-40px);
}

}

@keyframes headingLine {

from {
	-webkit-transform: translateX(0);
	transform: translateX(0);
}

to {
	-webkit-transform: translateX(-40px);
	transform: translateX(-40px);
}

}

